home *** CD-ROM | disk | FTP | other *** search
- Option Explicit
- Global Const AppName = "Search a drive"
- Global Const MP_Normal = 0 ' Mouse Pointer
- Global Const MP_Uhr = 11 ' Mouse Pointer
-
- Function AppError (msg As String) As String
- Stop
- End Function
-
- Sub Backslash (path$)
- If Right$(path$, 1) <> "\" Then path$ = path$ + "\"
- End Sub
-
- Sub vbAppFileFirst ()
- frmMain.List1.Clear
- End Sub
-
- Sub vbAppFileFound (file$)
- frmMain.List1.AddItem file$
- End Sub
-
- Sub vbAppFileLast (flag As Integer)
- Dim temp$
- If flag Then
- temp$ = "Search terminated by user"
- Else
- temp$ = "Search completed"
- End If
- MsgBox temp$, 48, AppName
- End Sub
-
-